What is the `@use` directive in SASS and how does it differ from `@import`?
Description : Understanding the `@use` directive and its advantages over `@import`.
Answer :
`@use` is a SASS directive introduced to replace `@import`. It loads a stylesheet only once, applies namespacing, and avoids conflicts by encapsulating styles, variables, and mixins. For instance,`@use 'colors' as *;` imports all members of the `colors.scss` file with no namespace. Unlike `@import`,`@use` helps in modularizing styles, reducing duplication, and managing dependencies more effectively.